@charset "utf-8";
.booking-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
}

.booking-form {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.booking-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #0e7ac4;
}

.booking-form label {
  font-weight: bold;
  display: block;
  margin-top: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.book-submit {
  background: #0e7ac4;
  color: white;
  padding: 14px;
  margin-top: 20px;
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.book-submit:hover {
  background: #085c92;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}